home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / SecalDemo / Inc / graphics / sprite.inc < prev    next >
Text File  |  1998-06-24  |  598b  |  31 lines

  1. include "inc/exec/types.inc";
  2.  
  3. def SPRITE_ATTACHED = $80;
  4.  
  5. struct SimpleSprite is
  6.   posctldata:ulong;
  7.   height:uword;
  8.   x,y:uword;
  9.   num:uword;
  10. ;
  11.  
  12. struct ExtSprite is
  13.   es_SimpleSprite:SimpleSprite;
  14.   es_wordwidth:uword;
  15.   es_flags:uword;
  16. ;
  17.  
  18. def SPRITEA_Width = $81000000;
  19. def SPRITEA_XReplication = $81000002;
  20. def SPRITEA_YReplication = $81000004;
  21. def SPRITEA_OutputHeight = $81000006;
  22. def SPRITEA_Attached = $81000008;
  23. def SPRITEA_OldDataFormat = $8100000a;
  24.  
  25. def GSTAG_SPRITE_NUM = $82000020;
  26. def GSTAG_ATTACHED = $82000022;
  27. def GSTAG_SOFTSPRITE = $82000024;
  28.  
  29. def GSTAG_SCANDOUBLED = $83000000;
  30.  
  31.